Josh Dillon, Last Revised January 2022
This notebook examines an individual antenna's performance over a whole season. This notebook parses information from each nightly rtp_summarynotebook (as saved to .csvs) and builds a table describing antenna performance. It also reproduces per-antenna plots from each auto_metrics notebook pertinent to the specific antenna.
import os
from IPython.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
# If you want to run this notebook locally, copy the output of the next cell into the next line of this cell.
# antenna = "004"
# csv_folder = '/lustre/aoc/projects/hera/H5C/H5C_Notebooks/_rtp_summary_'
# auto_metrics_folder = '/lustre/aoc/projects/hera/H5C/H5C_Notebooks/auto_metrics_inspect'
# os.environ["ANTENNA"] = antenna
# os.environ["CSV_FOLDER"] = csv_folder
# os.environ["AUTO_METRICS_FOLDER"] = auto_metrics_folder
# Use environment variables to figure out path to the csvs and auto_metrics
antenna = str(int(os.environ["ANTENNA"]))
csv_folder = os.environ["CSV_FOLDER"]
auto_metrics_folder = os.environ["AUTO_METRICS_FOLDER"]
print(f'antenna = "{antenna}"')
print(f'csv_folder = "{csv_folder}"')
print(f'auto_metrics_folder = "{auto_metrics_folder}"')
antenna = "112" csv_folder = "/home/obs/src/H6C_Notebooks/_rtp_summary_" auto_metrics_folder = "/home/obs/src/H6C_Notebooks/auto_metrics_inspect"
display(HTML(f'<h1 style=font-size:50px><u>Antenna {antenna} Report</u><p></p></h1>'))
import numpy as np
import pandas as pd
pd.set_option('display.max_rows', 1000)
import glob
import re
from hera_notebook_templates.utils import status_colors, Antenna
# load csvs and auto_metrics htmls in reverse chronological order
csvs = sorted(glob.glob(os.path.join(csv_folder, 'rtp_summary_table*.csv')))[::-1]
print(f'Found {len(csvs)} csvs in {csv_folder}')
auto_metric_htmls = sorted(glob.glob(auto_metrics_folder + '/auto_metrics_inspect_*.html'))[::-1]
print(f'Found {len(auto_metric_htmls)} auto_metrics notebooks in {auto_metrics_folder}')
Found 28 csvs in /home/obs/src/H6C_Notebooks/_rtp_summary_ Found 28 auto_metrics notebooks in /home/obs/src/H6C_Notebooks/auto_metrics_inspect
# Per-season options
mean_round_modz_cut = 4
dead_cut = 0.4
crossed_cut = 0.0
def jd_to_summary_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/_rtp_summary_/rtp_summary_{jd}.html'
def jd_to_auto_metrics_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/auto_metrics_inspect/auto_metrics_inspect_{jd}.html'
this_antenna = None
jds = []
# parse information about antennas and nodes
for csv in csvs:
df = pd.read_csv(csv)
for n in range(len(df)):
# Add this day to the antenna
row = df.loc[n]
if isinstance(row['Ant'], str) and '<a href' in row['Ant']:
antnum = int(row['Ant'].split('</a>')[0].split('>')[-1]) # it's a link, extract antnum
else:
antnum = int(row['Ant'])
if antnum != int(antenna):
continue
if np.issubdtype(type(row['Node']), np.integer):
row['Node'] = str(row['Node'])
if type(row['Node']) == str and row['Node'].isnumeric():
row['Node'] = 'N' + ('0' if len(row['Node']) == 1 else '') + row['Node']
if this_antenna is None:
this_antenna = Antenna(row['Ant'], row['Node'])
jd = [int(s) for s in re.split('_|\.', csv) if s.isdigit()][-1]
jds.append(jd)
this_antenna.add_day(jd, row)
break
# build dataframe
to_show = {'JDs': [f'<a href="{jd_to_summary_url(jd)}" target="_blank">{jd}</a>' for jd in jds]}
to_show['A Priori Status'] = [this_antenna.statuses[jd] for jd in jds]
df = pd.DataFrame(to_show)
# create bar chart columns for flagging percentages:
bar_cols = {}
bar_cols['Auto Metrics Flags'] = [this_antenna.auto_flags[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jee)'] = [this_antenna.dead_flags_Jee[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jnn)'] = [this_antenna.dead_flags_Jnn[jd] for jd in jds]
bar_cols['Crossed Fraction in Ant Metrics'] = [this_antenna.crossed_flags[jd] for jd in jds]
bar_cols['Flag Fraction Before Redcal'] = [this_antenna.flags_before_redcal[jd] for jd in jds]
bar_cols['Flagged By Redcal chi^2 Fraction'] = [this_antenna.redcal_flags[jd] for jd in jds]
for col in bar_cols:
df[col] = bar_cols[col]
z_score_cols = {}
z_score_cols['ee Shape Modified Z-Score'] = [this_antenna.ee_shape_zs[jd] for jd in jds]
z_score_cols['nn Shape Modified Z-Score'] = [this_antenna.nn_shape_zs[jd] for jd in jds]
z_score_cols['ee Power Modified Z-Score'] = [this_antenna.ee_power_zs[jd] for jd in jds]
z_score_cols['nn Power Modified Z-Score'] = [this_antenna.nn_power_zs[jd] for jd in jds]
z_score_cols['ee Temporal Variability Modified Z-Score'] = [this_antenna.ee_temp_var_zs[jd] for jd in jds]
z_score_cols['nn Temporal Variability Modified Z-Score'] = [this_antenna.nn_temp_var_zs[jd] for jd in jds]
z_score_cols['ee Temporal Discontinuties Modified Z-Score'] = [this_antenna.ee_temp_discon_zs[jd] for jd in jds]
z_score_cols['nn Temporal Discontinuties Modified Z-Score'] = [this_antenna.nn_temp_discon_zs[jd] for jd in jds]
for col in z_score_cols:
df[col] = z_score_cols[col]
ant_metrics_cols = {}
ant_metrics_cols['Average Dead Ant Metric (Jee)'] = [this_antenna.Jee_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Dead Ant Metric (Jnn)'] = [this_antenna.Jnn_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Crossed Ant Metric'] = [this_antenna.crossed_metrics[jd] for jd in jds]
for col in ant_metrics_cols:
df[col] = ant_metrics_cols[col]
redcal_cols = {}
redcal_cols['Median chi^2 Per Antenna (Jee)'] = [this_antenna.Jee_chisqs[jd] for jd in jds]
redcal_cols['Median chi^2 Per Antenna (Jnn)'] = [this_antenna.Jnn_chisqs[jd] for jd in jds]
for col in redcal_cols:
df[col] = redcal_cols[col]
# style dataframe
table = df.style.hide_index()\
.applymap(lambda val: f'background-color: {status_colors[val]}' if val in status_colors else '', subset=['A Priori Status']) \
.background_gradient(cmap='viridis', vmax=mean_round_modz_cut * 3, vmin=0, axis=None, subset=list(z_score_cols.keys())) \
.background_gradient(cmap='bwr_r', vmin=dead_cut-.25, vmax=dead_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.background_gradient(cmap='bwr_r', vmin=crossed_cut-.25, vmax=crossed_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.background_gradient(cmap='plasma', vmax=4, vmin=1, axis=None, subset=list(redcal_cols.keys())) \
.applymap(lambda val: 'font-weight: bold' if val < dead_cut else '', subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val < crossed_cut else '', subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.applymap(lambda val: 'color: red' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.bar(subset=list(bar_cols.keys()), vmin=0, vmax=1) \
.format({col: '{:,.4f}'.format for col in z_score_cols}) \
.format({col: '{:,.4f}'.format for col in ant_metrics_cols}) \
.format('{:,.2%}', na_rep='-', subset=list(bar_cols.keys())) \
.set_table_styles([dict(selector="th",props=[('max-width', f'70pt')])])
This table reproduces each night's row for this antenna from the RTP Summary notebooks. For more info on the columns, see those notebooks, linked in the JD column.
display(HTML(f'<h2>Antenna {antenna}, Node {this_antenna.node}:</h2>'))
HTML(table.render(render_links=True, escape=False))
| JDs | A Priori Status | Auto Metrics Flags | Dead Fraction in Ant Metrics (Jee) | Dead Fraction in Ant Metrics (Jnn) | Crossed Fraction in Ant Metrics | Flag Fraction Before Redcal | Flagged By Redcal chi^2 Fraction | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | Average Dead Ant Metric (Jee) | Average Dead Ant Metric (Jnn) | Average Crossed Ant Metric | Median chi^2 Per Antenna (Jee) | Median chi^2 Per Antenna (Jnn) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2460011 | digital_ok | 100.00% | 70.95% | 99.84% | 0.16% | - | - | 2.633536 | 14.504097 | 10.083010 | 15.120330 | 0.617660 | 15.554099 | 0.488658 | 1.177277 | 0.1784 | 0.0681 | -0.1072 | nan | nan |
| 2460010 | digital_ok | 100.00% | 67.96% | 99.95% | 0.05% | - | - | 2.102793 | 15.864249 | 8.208828 | 12.527756 | 0.804776 | 10.151558 | 0.354483 | 1.029584 | 0.1830 | 0.0698 | -0.1108 | nan | nan |
| 2460009 | digital_ok | 100.00% | 67.14% | 99.95% | 0.05% | - | - | 1.342893 | 14.614256 | 9.059567 | 13.791099 | 0.174927 | 8.580529 | 0.046877 | 1.177625 | 0.1881 | 0.0726 | -0.1112 | nan | nan |
| 2460008 | digital_ok | 100.00% | 28.70% | 91.08% | 0.00% | - | - | 2.183092 | 17.884694 | 9.976949 | 15.176664 | 0.436051 | 7.538610 | 6.675718 | 4.769873 | 0.2886 | 0.1047 | -0.0595 | nan | nan |
| 2460007 | digital_ok | 100.00% | 59.02% | 97.89% | 0.00% | - | - | 2.263813 | 13.420060 | 7.949091 | 11.871889 | 0.318391 | 6.985902 | 0.661062 | 1.338822 | 0.2048 | 0.0818 | -0.0992 | nan | nan |
| 2459999 | digital_ok | 0.00% | 99.08% | 99.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.2264 | 0.2308 | 0.1843 | nan | nan |
| 2459998 | digital_ok | 100.00% | 60.52% | 98.70% | 1.30% | - | - | 2.278557 | 11.498418 | 6.935453 | 10.063277 | 0.703171 | 10.009997 | 0.267439 | 0.807323 | 0.1962 | 0.0682 | -0.1067 | nan | nan |
| 2459997 | digital_ok | 100.00% | 33.84% | 97.46% | 2.54% | - | - | 2.564049 | 12.532952 | 7.330176 | 10.818986 | 0.752085 | 9.441639 | 1.251109 | 1.924775 | 0.2096 | 0.0777 | -0.1026 | nan | nan |
| 2459996 | digital_ok | 100.00% | 61.62% | 95.68% | 4.32% | - | - | 2.841113 | 13.452800 | 9.144266 | 13.241538 | 0.504648 | 9.073522 | -0.046952 | 0.515831 | 0.1895 | 0.0682 | -0.1170 | nan | nan |
| 2459995 | digital_ok | 100.00% | 45.19% | 97.84% | 2.16% | - | - | 2.957956 | 13.658520 | 8.476241 | 12.440791 | 0.708865 | 9.295413 | -0.218341 | 0.263158 | 0.2063 | 0.0771 | -0.1090 | nan | nan |
| 2459994 | digital_ok | 100.00% | 52.48% | 99.24% | 0.16% | - | - | 3.100488 | 13.306106 | 7.475811 | 10.905418 | 1.162406 | 9.375905 | -0.009215 | 0.452888 | 0.2036 | 0.0702 | -0.0932 | nan | nan |
| 2459993 | digital_ok | 100.00% | 79.03% | 97.84% | 0.00% | - | - | 5.227290 | 12.516066 | 7.044473 | 10.115868 | 2.780118 | 10.736811 | 0.184338 | 1.585276 | 0.1914 | 0.0541 | -0.0978 | nan | nan |
| 2459991 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 12.764566 | 15.988881 | 9.812269 | 10.758102 | 9.165880 | 10.775058 | -0.174247 | 0.081988 | 0.0299 | 0.0308 | 0.0011 | nan | nan |
| 2459990 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 10.362640 | 13.174747 | 9.606894 | 10.450304 | 9.077709 | 11.073698 | -0.315270 | -0.164478 | 0.0305 | 0.0331 | 0.0017 | nan | nan |
| 2459989 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 10.142323 | 13.353483 | 8.549640 | 9.553445 | 8.010109 | 9.287762 | -0.301239 | -0.088003 | 0.0295 | 0.0306 | 0.0011 | nan | nan |
| 2459988 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 1.375102 | -0.754572 | 0.327256 | 0.268994 | 1.175346 | 2.254612 | 0.753621 | -0.662064 | 0.6184 | 0.6264 | 0.3806 | nan | nan |
| 2459987 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 0.995061 | -0.738556 | 0.282661 | 0.374838 | 0.528003 | 1.694115 | 0.534992 | -0.018932 | 0.6238 | 0.6314 | 0.3819 | nan | nan |
| 2459986 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 1.610538 | -0.711602 | 0.331162 | 0.250428 | 0.671905 | 1.658013 | 1.153033 | 0.671840 | 0.6459 | 0.6587 | 0.3330 | nan | nan |
| 2459985 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 0.426038 | -0.767240 | 0.289044 | 0.215626 | 0.399977 | 1.730375 | 0.368648 | -0.248511 | 0.6259 | 0.6327 | 0.3851 | nan | nan |
| 2459984 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | -1.138702 | -0.766256 | 0.241746 | 0.105320 | 0.549193 | 0.879656 | -0.150972 | -0.500379 | 0.6408 | 0.6514 | 0.3636 | nan | nan |
| 2459983 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 1.231225 | -0.450213 | 0.371131 | 0.233138 | 0.396951 | 1.911312 | 1.030625 | 0.061413 | 0.6495 | 0.6726 | 0.3192 | nan | nan |
| 2459982 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | -0.028857 | -0.523102 | 0.519346 | 0.502125 | 0.003534 | 0.941933 | 0.509340 | 0.692295 | 0.6947 | 0.7009 | 0.2909 | nan | nan |
| 2459981 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 0.703401 | -0.475117 | 0.279034 | 0.187938 | 0.820233 | 2.752721 | 0.603090 | -0.721339 | 0.6199 | 0.6315 | 0.3861 | nan | nan |
| 2459980 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 0.292448 | -0.274022 | 0.188820 | 0.223414 | 0.456757 | 1.864934 | 0.852380 | 0.662325 | 0.6642 | 0.6756 | 0.3153 | nan | nan |
| 2459979 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 0.572237 | -0.328140 | 0.063255 | 0.242674 | 0.426146 | 2.391633 | 0.501455 | -0.751572 | 0.6164 | 0.6325 | 0.3881 | nan | nan |
| 2459978 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | 0.028321 | -0.395162 | 0.123020 | 0.226015 | 0.573451 | 2.192620 | 0.515107 | -0.904621 | 0.6127 | 0.6260 | 0.3941 | nan | nan |
| 2459977 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | -0.506258 | -0.246204 | 0.111903 | 0.162565 | 1.042837 | 2.829051 | 0.736975 | -0.582748 | 0.5834 | 0.5939 | 0.3552 | nan | nan |
| 2459976 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | - | - | -0.155037 | -0.387923 | 0.214568 | 0.221391 | 0.176419 | 2.881300 | -0.248149 | -0.846964 | 0.6266 | 0.6392 | 0.3851 | nan | nan |
auto_metrics notebooks.¶htmls_to_display = []
for am_html in auto_metric_htmls:
html_to_display = ''
# read html into a list of lines
with open(am_html) as f:
lines = f.readlines()
# find section with this antenna's metric plots and add to html_to_display
jd = [int(s) for s in re.split('_|\.', am_html) if s.isdigit()][-1]
try:
section_start_line = lines.index(f'<h2>Antenna {antenna}: {jd}</h2>\n')
except ValueError:
continue
html_to_display += lines[section_start_line].replace(str(jd), f'<a href="{jd_to_auto_metrics_url(jd)}" target="_blank">{jd}</a>')
for line in lines[section_start_line + 1:]:
html_to_display += line
if '<hr' in line:
htmls_to_display.append(html_to_display)
break
These figures are reproduced from auto_metrics notebooks. For more info on the specific plots and metrics, see those notebooks (linked at the JD). The most recent 100 days (at most) are shown.
for i, html_to_display in enumerate(htmls_to_display):
if i == 100:
break
display(HTML(html_to_display))
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 15.554099 | 2.633536 | 14.504097 | 10.083010 | 15.120330 | 0.617660 | 15.554099 | 0.488658 | 1.177277 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 15.864249 | 2.102793 | 15.864249 | 8.208828 | 12.527756 | 0.804776 | 10.151558 | 0.354483 | 1.029584 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 14.614256 | 1.342893 | 14.614256 | 9.059567 | 13.791099 | 0.174927 | 8.580529 | 0.046877 | 1.177625 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 17.884694 | 17.884694 | 2.183092 | 15.176664 | 9.976949 | 7.538610 | 0.436051 | 4.769873 | 6.675718 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 13.420060 | 2.263813 | 13.420060 | 7.949091 | 11.871889 | 0.318391 | 6.985902 | 0.661062 | 1.338822 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | nan | nan | nan | nan | nan | nan | nan | nan | nan |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 11.498418 | 2.278557 | 11.498418 | 6.935453 | 10.063277 | 0.703171 | 10.009997 | 0.267439 | 0.807323 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 12.532952 | 2.564049 | 12.532952 | 7.330176 | 10.818986 | 0.752085 | 9.441639 | 1.251109 | 1.924775 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 13.452800 | 2.841113 | 13.452800 | 9.144266 | 13.241538 | 0.504648 | 9.073522 | -0.046952 | 0.515831 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 13.658520 | 2.957956 | 13.658520 | 8.476241 | 12.440791 | 0.708865 | 9.295413 | -0.218341 | 0.263158 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 13.306106 | 3.100488 | 13.306106 | 7.475811 | 10.905418 | 1.162406 | 9.375905 | -0.009215 | 0.452888 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 12.516066 | 5.227290 | 12.516066 | 7.044473 | 10.115868 | 2.780118 | 10.736811 | 0.184338 | 1.585276 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 15.988881 | 12.764566 | 15.988881 | 9.812269 | 10.758102 | 9.165880 | 10.775058 | -0.174247 | 0.081988 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 13.174747 | 13.174747 | 10.362640 | 10.450304 | 9.606894 | 11.073698 | 9.077709 | -0.164478 | -0.315270 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Shape | 13.353483 | 13.353483 | 10.142323 | 9.553445 | 8.549640 | 9.287762 | 8.010109 | -0.088003 | -0.301239 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 2.254612 | -0.754572 | 1.375102 | 0.268994 | 0.327256 | 2.254612 | 1.175346 | -0.662064 | 0.753621 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 1.694115 | 0.995061 | -0.738556 | 0.282661 | 0.374838 | 0.528003 | 1.694115 | 0.534992 | -0.018932 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 1.658013 | -0.711602 | 1.610538 | 0.250428 | 0.331162 | 1.658013 | 0.671905 | 0.671840 | 1.153033 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 1.730375 | -0.767240 | 0.426038 | 0.215626 | 0.289044 | 1.730375 | 0.399977 | -0.248511 | 0.368648 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 0.879656 | -1.138702 | -0.766256 | 0.241746 | 0.105320 | 0.549193 | 0.879656 | -0.150972 | -0.500379 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 1.911312 | 1.231225 | -0.450213 | 0.371131 | 0.233138 | 0.396951 | 1.911312 | 1.030625 | 0.061413 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 0.941933 | -0.028857 | -0.523102 | 0.519346 | 0.502125 | 0.003534 | 0.941933 | 0.509340 | 0.692295 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 2.752721 | -0.475117 | 0.703401 | 0.187938 | 0.279034 | 2.752721 | 0.820233 | -0.721339 | 0.603090 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 1.864934 | -0.274022 | 0.292448 | 0.223414 | 0.188820 | 1.864934 | 0.456757 | 0.662325 | 0.852380 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 2.391633 | 0.572237 | -0.328140 | 0.063255 | 0.242674 | 0.426146 | 2.391633 | 0.501455 | -0.751572 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 2.192620 | -0.395162 | 0.028321 | 0.226015 | 0.123020 | 2.192620 | 0.573451 | -0.904621 | 0.515107 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 2.829051 | -0.506258 | -0.246204 | 0.111903 | 0.162565 | 1.042837 | 2.829051 | 0.736975 | -0.582748 |
| Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112 | N10 | digital_ok | nn Temporal Variability | 2.881300 | -0.387923 | -0.155037 | 0.221391 | 0.214568 | 2.881300 | 0.176419 | -0.846964 | -0.248149 |